/* CATEGORIES */

#mx_webshop_categories {
display: flex;
align-items: center;
padding-top: 100px;
position: relative;
column-gap: 20px;
padding-bottom: 20px;
overflow: auto;
cursor: grab;
}

#mx_webshop_categories:before {
position: fixed;
top: 0;
left: 0;
display:block;
content:"";
width:60%;
margin-left:40%;
height:1.5px;
background-color:#000000;
}

.mx_webshop_category {
line-height: 60px;
height: 60px;
background-color: #000000;
flex: 1;
position: relative;
}

.mx_webshop_category_content {
width: auto;
min-width: 200px;
padding: 0 70px 0 15px;
text-align: center;
}

.mx_webshop_category_image {
position: absolute;
width: 60px;
top: 0;
right: 0;
border-left: solid 1px #FFF;
margin: 8px 0;
height: calc(100% - 16px);
display: flex;
  align-items: center;
  justify-content: center;
}

.mx_webshop_category_image img {
width: 40px;
height: auto;
}

.mx_webshop_category a {
    display: block;
    text-decoration: none;
}

.mx_webshop_category h2 {
    color: #FFFFFF;
    text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 22px;
  padding-bottom: 0;
}